home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 1.iso / util / cinstp15.zip / SHOWLOG.TXT < prev    next >
Text File  |  1995-01-18  |  2KB  |  48 lines

  1.                             SHOWLOG.EXE
  2.                             -----------
  3.  
  4. This is a little (DOS command line) utility to display the contents
  5. of the LOG file (default=UNINSTAL.LOG) created by the installer.
  6. This is the same LOG file used by UNINSTAL.EXE to do its job.
  7.  
  8. The syntax is:  SHOWLOG <LOG FILE> [>filename]
  9.  
  10. The above shows that the output of SHOWLOG can be redirected to a
  11. file - by default, the output is sent to the screen.
  12.  
  13. SHOWLOG will search the DOS "path" for the LOG file specified.
  14.  
  15. If no file name is supplied, then SHOWLOG will prompt for the name
  16. of the LOG file to be displayed.
  17.  
  18. SHOWLOG was written as a compromise measure for those people who
  19. wanted some sort of readable log of the installation. I have no
  20. intention of improving this utility any further - it will only be
  21. updated if and when the file format of the LOG file changes.
  22.  
  23. What SHOWLOG shows you is a translation (into understandable language)
  24. of what the uninstaller sees when it is run.
  25.  
  26.  
  27. $DEBUG-LOG
  28. ----------
  29. Normally, the only things logged are the new files, icons, groups,
  30. and entries in the registration database, which have been created
  31. by the installer. Existing files and icons are not logged. If you
  32. want a full logging for DEBUG purposes, then use the $DEBUG-LOG
  33. command in your INF file. This reserved word takes NO PARAMETER, and
  34. is only documented here. It should NOT be used in the INF file that
  35. you ship with your application. It will only make the LOG file become
  36. too big and this serves no useful purpose for your customers.
  37.  
  38. When this command is used, log entries are made for files which
  39. already existed on the system when the installation was run, and
  40. which the user chose to overwrite (they will be tagged as $$OLD_FILE
  41. and will NOT be deleted by the uninstaller). Log entries are also made
  42. for icons which already existed (tagged as $$OLD_ICON). These also will
  43. not be deleted by the uninstaller. This is the only difference that using
  44. $DEBUG-LOG makes - but note that in a large installation, the entries
  45. made for existing files and icons may increase the size of the LOG file
  46. dramatically.
  47.  
  48.